Loading
Scriptbox
 VBScript Links 
 About VBscript 
 JavaScript Links 
 About JavaScript 
 Powershell Links 
 PSCRIPT the Script Launcher 
 PowerShell Shortcut Keys 
 About Powershell 
     VBScript
    JavaScript
    Powershell
Disclaimer
Contact
Latest 10 Scripts
Script search
  :: { Category } :: 0-9ABCDEFGHIJKLMNOPQRSTUVWXYZ
         

Search Options:  List  All  the  Meetings  Scheduled  By  a  Specified  Person  

 Content of List All the Meetings Scheduled By a Specified Person.vbs
MD5 Hash: 255013C08E54575F35CE900AF2DEE468
Const olFolderCalendar = 9

Set objOutlook = CreateObject("Outlook.Application")
Set objNamespace = objOutlook.GetNamespace("MAPI")
Set objFolder = objNamespace.GetDefaultFolder(olFolderCalendar)

Set colItems = objFolder.Items

strFilter = "[Organizer] = 'Ken Myer'"
Set colFilteredItems = colItems.Restrict(strFilter)

For Each objItem In colFilteredItems
If objItem.Start > Now Then
Wscript.Echo "Meeting name: " & objItem.Subject
Wscript.Echo "Meeting date: " & objItem.Start
Wscript.Echo "Duration: " & objItem.Duration & " minutes"
Wscript.Echo "Location: " & objItem.Location
Wscript.Echo
End If
Next



   © 2008 - 2013 Boris Toll      :: Scripts available: 6.481 ::      :: scriptbox.toll.at ::      :: powered by www.toll.at ::
  Google Entries:n/a
  Yahoo Backlinks:n/a
  Live Backlinks:n/a
  del.icio.us Bookmarks:n/a
  Technorati Links:n/a